shortn/docker-compose.yml

17 lines
364 B
YAML
Raw Normal View History

2024-12-07 23:12:56 +01:00
services:
shortn:
build:
context: .
container_name: shortn
ports:
- "49152:49152"
2024-12-07 23:12:56 +01:00
volumes:
- ./src:/app/src
environment:
FLASK_APP: src/app.py
FLASK_RUN_HOST: 0.0.0.0
2024-12-08 00:10:54 +01:00
FLASK_RUN_PORT: 49152
2024-12-07 23:12:56 +01:00
command: sh -c "python /app/src/manage_users.py init && flask run"
2024-12-07 23:43:06 +01:00
networks:
shortn-network:
driver: bridge