Skip to content

Commit

Permalink
added step to deploy to docker swarm
Browse files Browse the repository at this point in the history
  • Loading branch information
OomsOoms committed Feb 14, 2025
1 parent ecff058 commit 4d4cec9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 56 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Create env file in /server
run: |
mkdir -p server
touch server/.env
echo DATABASE_URI=${{ vars.DATABASE_URI }} >> server/.env
cat server/.env # Verify the file is created
- name: Build Docker image
run: docker build -t my-app:latest -t my-app:${{ github.sha }} -f server/Dockerfile server
run: docker build -t nettleship-net-api:latest -f server/Dockerfile server

- name: Deploy to Docker Swarm
run: |
# Make sure Docker is available and the image is built
docker pull nettleship-net-api:latest # (if needed, to ensure the latest is on the Pi)
# Deploy to Swarm
docker stack deploy -c docker-compose.yml nettleship-net-api
61 changes: 13 additions & 48 deletions server/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,16 @@
# Comments are provided throughout this file to help you get started.
# If you need more help, visit the Docker Compose reference guide at
# https://docs.docker.com/go/compose-spec-reference/
version: "3.9"

# Here the instructions define your application as a service called "server".
# This service is built from the Dockerfile in the current directory.
# You can add other services your application may depend on here, such as a
# database or a cache. For examples, see the Awesome Compose repository:
# https://github.com/docker/awesome-compose
services:
server:
build:
context: .
environment:
NODE_ENV: production
nettleship-net-api:
image: nettleship-net-api:latest
deploy:
replicas: 1
restart_policy:
condition: none
placement:
constraints:
- node.role == manager # This ensures the service runs only on the manager node (pi-1)
ports:
- 8000:8000

# The commented out section below is an example of how to define a PostgreSQL
# database that your application can use. `depends_on` tells Docker Compose to
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker-compose up`.
# depends_on:
# db:
# condition: service_healthy
# db:
# image: postgres
# restart: always
# user: postgres
# secrets:
# - db-password
# volumes:
# - db-data:/var/lib/postgresql/data
# environment:
# - POSTGRES_DB=example
# - POSTGRES_PASSWORD_FILE=/run/secrets/db-password
# expose:
# - 5432
# healthcheck:
# test: [ "CMD", "pg_isready" ]
# interval: 10s
# timeout: 5s
# retries: 5
# volumes:
# db-data:
# secrets:
# db-password:
# file: db/password.txt

- "3000:3000"
volumes:
- ./logs:/usr/src/app/logs

0 comments on commit 4d4cec9

Please sign in to comment.