diff options
author | fx <[email protected]> | 2023-10-09 17:26:59 +0200 |
---|---|---|
committer | fx <[email protected]> | 2023-10-09 17:26:59 +0200 |
commit | 3e6a72428824c5a50a873a4284b86d0a9e47a778 (patch) | |
tree | 7f3594f4068a8009210039bc33e0205a672828f7 /docker-compose.yml | |
parent | 732c487d3dab4af9fc561527591d3d56299e39f2 (diff) | |
download | webol-3e6a72428824c5a50a873a4284b86d0a9e47a778.tar webol-3e6a72428824c5a50a873a4284b86d0a9e47a778.tar.gz webol-3e6a72428824c5a50a873a4284b86d0a9e47a778.zip |
db int for api
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1980356 --- /dev/null +++ b/docker-compose.yml | |||
@@ -0,0 +1,11 @@ | |||
1 | version: '3.1' | ||
2 | |||
3 | services: | ||
4 | db: | ||
5 | image: postgres | ||
6 | restart: no | ||
7 | environment: | ||
8 | POSTGRES_PASSWORD: postgres | ||
9 | |||
10 | ports: | ||
11 | - "5432:5432" | ||