Initial commit
This commit is contained in:
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
#version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:13.1
|
||||
container_name: avsa_form_db
|
||||
restart: always
|
||||
volumes:
|
||||
- ./postgresql:/var/lib/postgresql/data
|
||||
env_file:
|
||||
- db.env
|
||||
networks:
|
||||
- avsa_form
|
||||
|
||||
flask:
|
||||
image: python:3.11.8-alpine
|
||||
|
||||
networks:
|
||||
avsa_form:
|
||||
external: true
|
||||
#reverse-proxy:
|
||||
Reference in New Issue
Block a user