Changed repo

This commit is contained in:
DutchEllie 2022-05-11 10:48:20 +02:00
parent 0904047c7a
commit 6bf7baa399
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
2 changed files with 52 additions and 5 deletions

View File

@ -1,16 +1,63 @@
kind: pipeline kind: pipeline
type: kubernetes type: kubernetes
name: pepebot_build name: pepebot_build_x86
platform:
os: linux
arch: amd64
steps: steps:
- name: build-main - name: build-main
image: plugins/docker image: plugins/docker
settings: settings:
registry: dutchellie.nl
username: username:
from_secret: docker_username from_secret: docker_username
password: password:
from_secret: docker_password from_secret: docker_password
repo: dutchellie.nl/dutchellie/pepebot dockerfile: Dockerfile
repo: dutchellie/pepebot
tags:
- latest
- name: build-service
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: pepeservice/Dockerfile
repo: dutchellie/pepebot_service
tags:
- latest
---
kind: pipeline
type: docker
name: pepebot_build_arm64
platform:
os: linux
arch: arm64
steps:
- name: build-main
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: Dockerfile
repo: dutchellie/pepebot
tags:
- latest
- name: build-service
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: pepeservice/Dockerfile
repo: dutchellie/pepebot_service
tags: tags:
- latest - latest

View File

@ -2,7 +2,7 @@ version: "3.7"
services: services:
app: app:
container_name: pepebot_server container_name: pepebot_server
image: dutchellie.nl/dutchellie/pepebot image: dutchellie/pepebot
build: . build: .
restart: always restart: always
depends_on: depends_on:
@ -27,7 +27,7 @@ services:
- pepe_db_data:/var/lib/mysql - pepe_db_data:/var/lib/mysql
pepe_service: pepe_service:
container_name: pepebot_service container_name: pepebot_service
image: dutchellie.nl/dutchellie/pepebot_service:latest image: dutchellie/pepebot_service:latest
build: pepeservice build: pepeservice
restart: always restart: always
environment: environment: