Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RabbitMQ Egg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sofiane Lasri
RabbitMQ Egg
Commits
14868fa1
Commit
14868fa1
authored
11 months ago
by
Sofiane Lasri
Browse files
Options
Downloads
Patches
Plain Diff
Création image rabbit mq 3.13.3
parent
5169d7a3
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#370
failed
11 months ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+13
-0
13 additions, 0 deletions
Dockerfile
entrypoint.sh
+8
-0
8 additions, 0 deletions
entrypoint.sh
with
21 additions
and
0 deletions
Dockerfile
0 → 100644
+
13
−
0
View file @
14868fa1
FROM
rabbitmq:3.13.3-alpine
LABEL
author="Sofiane Lasri"
RUN
adduser
--disabled-password
--home
/home/container container
USER
container
ENV
USER=container HOME=/home/container
WORKDIR
/home/container
COPY
./entrypoint.sh /entrypoint.sh
CMD
["/bin/bash", "/entrypoint.sh"]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
entrypoint.sh
0 → 100644
+
8
−
0
View file @
14868fa1
#!/bin/bash
cd
/home/container
MODIFIED_STARTUP
=
$(
echo
${
STARTUP
}
|
sed
-e
's/{{/${/g'
-e
's/}}/}/g'
)
echo
":/home/container
$
${
MODIFIED_STARTUP
}
"
# Run the Server
eval
${
MODIFIED_STARTUP
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment