Skip to content

Commit

Permalink
Docker compose for running on rules.nullsignal.games.
Browse files Browse the repository at this point in the history
  • Loading branch information
plural committed Dec 8, 2023
1 parent a1fbed2 commit 4a39504
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
29 changes: 29 additions & 0 deletions data/templates/php/docker-compose.override.yml
@@ -0,0 +1,29 @@
version: "3.2"

services:
# service configuration for our dockerized Rails app
rules:

# use the Dockerfile next to this file
build: .

volumes:
- .:/var/www/html/
deploy@cobra-snapshot-test-1:~/comprehensive-rules$ cat docker-compose.override.yml
version: "3.2"

services:
# service configuration for our dockerized Rails app
rules:
networks:
- null_signal

environment:
VIRTUAL_HOST: rules.nullsignal.games
VIRTUAL_PORT: 80
LETSENCRYPT_HOST: rules.nullsignal.games
LETSENCRYPT_EMAIL: website@nisei.net

networks:
null_signal:
external: true
11 changes: 11 additions & 0 deletions data/templates/php/docker-compose.yml
@@ -0,0 +1,11 @@
version: "3.2"

services:
# service configuration for our dockerized Rails app
rules:

# use the Dockerfile next to this file
build: .

volumes:
- .:/var/www/html/

0 comments on commit 4a39504

Please sign in to comment.