CSS hookups added and docker-compose compatibility changes made

This commit is contained in:
Lucas Patenaude
2024-03-12 01:56:44 -06:00
parent 44f5f49275
commit 4f08ca3be1
16 changed files with 305 additions and 5 deletions

View File

@@ -1,14 +1,25 @@
version: '3.9'
############################################################
# To Give the container a project related name run: #
# #
# docker-compose -p final-project up #
# #
# ⚠️ Make sure current directory is: /ProjectSourceCode ⚠️ #
############################################################
services:
db:
container_name: postgres-db
image: postgres:14
env_file: .env
ports:
- '5433:5433'
- '5432:5432'
volumes:
- group-project:/var/lib/postgresql/data
- ./src/init_data:/docker-entrypoint-initdb.d
web:
container_name: node-web-interface
image: node:lts
user: 'node'
working_dir: /home/node/app
@@ -18,7 +29,7 @@ services:
depends_on:
- db
ports:
- '3001:3001'
- '3000:3000'
volumes:
- ./src:/home/node/app
command: 'npm start'