trips) adding initial commit
This commit is contained in:
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
services:
|
||||
trips:
|
||||
build: .
|
||||
container_name: trips
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
# Persistent SQLite database
|
||||
- trips-data:/data
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
DATABASE_URL: file:/data/trips.db
|
||||
PORT: "3000"
|
||||
|
||||
volumes:
|
||||
trips-data:
|
||||
Reference in New Issue
Block a user