We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4c34dc + 992c482 commit c884626Copy full SHA for c884626
.dockerignore
@@ -0,0 +1,8 @@
1
+node_modules
2
+**/.git
3
+**/README.md
4
+**/LICENSE
5
+**/.vscode
6
+**/npm-debug.log
7
+**/.env
8
+**/dist
docker-compose.yaml
@@ -0,0 +1,19 @@
+version: '3.8'
+services:
+ db:
+ container_name: code-racer-postgres
+ image: postgres:15.3-bookworm
+ restart: always
+ environment:
+ - POSTGRES_USER=${DATABASE_USERNAME}
9
+ - POSTGRES_PASSWORD=${DATABASE_PASSWORD}
10
+ - POSTGRES_DB=${DATABASE_NAME}
11
+ env_file:
12
+ - .env
13
+ ports:
14
+ - ${DATABASE_PORT}:${DATABASE_PORT}
15
+ volumes:
16
+ - db:/var/lib/postgresql/data
17
+volumes:
18
19
+ driver: local
0 commit comments