Initial commit 🎉

This commit is contained in:
Kieran Eglin
2024-01-18 20:32:01 -08:00
commit 1455cee3af
928 changed files with 5419 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
version: '3'
services:
postgres:
image: 'postgres:16-alpine'
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
phx:
build: .
volumes:
- '.:/app'
ports:
- '4008:4008'
depends_on:
- postgres
# command: 'sh -c "trap : TERM INT; tail -f /dev/null & wait"'
command:
- ./docker-run.sh
stdin_open: true
tty: true
env_file:
- .env