Onyx-API/docker/docker-compose.yml

37 lines
547 B
YAML
Raw Permalink Normal View History

2023-09-15 18:21:04 +02:00
version: "3.7"
name: "onyx"
# Services
services:
# App
api:
build: .
env_file:
- ./.env
- ../.env
restart: unless-stopped
command: ["run-server"]
stdin_open: true
tty: true
ports:
- ${VPORT}:${VPORT}
- ${DEBUG_PORT}:${DEBUG_PORT}
environment:
- VIRTUAL_HOST=${VHOST}
- VIRTUAL_PORT=${VPORT}
networks:
- app
- default
volumes:
- ../:/code/
# Docker Networks
networks:
default:
name: nginx-proxy
external: true
app:
driver: bridge