-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from sybila/ci-experiments
Ci experiments
- Loading branch information
Showing
9 changed files
with
209 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
name: Generate Docker Containers | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
database: | ||
name: Build backend database | ||
runs-on: ubuntu-latest | ||
env: | ||
DATABASE_URL: "postgresql://postgres:postgres@localhost:5555/postgres" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Start database | ||
working-directory: backend | ||
run: | | ||
docker run -d \ | ||
--name my-db \ | ||
-p 5555:5432 \ | ||
-e PGDATA=/data \ | ||
-e POSTGRES_USER=postgres \ | ||
-e POSTGRES_PASSWORD=postgres \ | ||
-e POSTGRES_DB=postgres \ | ||
postgres:16 | ||
- name: Init DB with prisma | ||
working-directory: backend | ||
run: npx prisma migrate dev --name init | ||
- name: Seed DB with data | ||
working-directory: backend | ||
run: npm run seed | ||
- name: Commit current state of the container | ||
working-directory: backend | ||
run: docker commit my-db daemontus/bbm-database:latest | ||
- name: Push image | ||
working-directory: backend | ||
run: docker push daemontus/bbm-database | ||
|
||
backend: | ||
name: Build backend image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build image | ||
working-directory: backend | ||
run: docker build -t daemontus/bbm-backend . | ||
- name: Push image | ||
working-directory: backend | ||
run: docker push daemontus/bbm-backend | ||
|
||
frontend: | ||
name: Build frontend image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Add Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
- name: Install dependencies | ||
working-directory: frontend | ||
run: npm install | ||
- name: Build frontend | ||
working-directory: frontend | ||
run: npm run build | ||
- name: Build image | ||
working-directory: frontend | ||
run: docker build -t daemontus/bbm-frontend . | ||
- name: Push image | ||
working-directory: frontend | ||
run: docker push daemontus/bbm-frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Container is based on Alpine linux with node.js preinstalled. | ||
FROM node:alpine | ||
WORKDIR /usr/mynodeapp | ||
|
||
# Copy backend files. | ||
COPY ./ ./ | ||
|
||
# Install project dependencies. | ||
RUN npm install | ||
|
||
# The port on which the backend is running. | ||
EXPOSE 3000 | ||
|
||
# Run server. | ||
CMD ["npm", "start"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM nginx:1.24.0 | ||
|
||
COPY nginx.conf /etc/nginx/nginx.conf | ||
COPY ./dist /www | ||
COPY startup.sh . | ||
RUN chmod +x ./startup.sh | ||
|
||
CMD /bin/bash -c "./startup.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
events { | ||
# configuration of connection processing | ||
} | ||
|
||
http { | ||
server { | ||
listen 80; | ||
server_name bbm.unsigned-short.com; | ||
|
||
root /www; | ||
|
||
location / { | ||
include /etc/nginx/mime.types; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import axios from "axios"; | ||
|
||
const axiosInstance = axios.create({ | ||
baseURL: 'http://localhost:3001', | ||
baseURL: '${BACKEND_URL}', | ||
}); | ||
|
||
export default axiosInstance; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
folder_path="/www/assets" | ||
|
||
file_path=$(find "$folder_path" -type f -name "*.js" -print -quit) | ||
|
||
if [ -n "$file_path" ]; then | ||
envsubst '${BACKEND_URL}' < "$file_path" > tmp.js | ||
mv tmp.js "$file_path" | ||
echo "URL substituted." | ||
else | ||
echo "No JavaScript file found." | ||
fi | ||
|
||
nginx -g 'daemon off;' |