radiostasis/docker-compose.example.yaml

20 lines
426 B
YAML
Raw Permalink Normal View History

2023-03-26 11:37:20 -05:00
services:
radiostasis-api:
image: radiostasis-api
build: ./api
container_name: radiostasis-api
env_file: .env
ports:
- 8001:80
2023-03-26 11:41:48 -05:00
restart: unless-stopped
2023-03-26 11:37:20 -05:00
radiostasis-static:
image: nginx:alpine
container_name: radiostasis-static
ports:
- 8000:80
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
- ./site:/usr/share/nginx/html
2023-03-26 11:41:48 -05:00
restart: unless-stopped